make git-annex_$version tags in the downloads repo
authorJoey Hess <joeyh@joeyh.name>
Thu, 2 Oct 2025 17:28:40 +0000 (13:28 -0400)
committerJoey Hess <joeyh@joeyh.name>
Thu, 2 Oct 2025 17:29:55 +0000 (13:29 -0400)
commit54a33b493471580534bc2a57b7cb5528328fedfb
tree8f385745138329b9dde4536ea7c8e97fda852b16
parentbbb2f158a92688e09840937ec77cd98c3641861b
make git-annex_$version tags in the downloads repo

Note the use of git tag -f, this way if it takes several tries to get a
release published, it will use the final one for the tag.

Tags have been retrospectively added for past releases, using this:

for v in $(git log --oneline --grep="publishing git-annex "| sed 's/ publishing git-annex / /'); do foo=$(echo "$v" | sed 's/ .*//'); bar=$(echo "$v" | sed 's/.* //');  git tag git-annex_"$bar" "$foo" ; done
Build/DistributionUpdate.hs